home *** CD-ROM | disk | FTP | other *** search
/ Univers Interactif 3 / INTERACTIF.BIN / mac / Planete.net / Internet Confirmés_Vrac / NetAgent.sea / src / makefile < prev    next >
Makefile  |  1992-06-15  |  865b  |  21 lines

  1. # This is an unsupported product. It was developed as part of a study at Ostfold
  2. # Regional College, Norway in the spring of 1992.
  3. #
  4. # You use this software at your own risk. Neither the authors nor the Ostfold
  5. # Regional College nor any other person or organization except yourself is
  6. # responsible for any damage or loss of data derived from the use of this
  7. # software. You may distribute this software freely as long as it is in its
  8. # original form and all of its files are included. If you make any changes to any
  9. # part of this software or the files distributed with it, please state so and do
  10. # NOT distribute it under its original name.
  11.  
  12.  
  13. SOBJ  =    agentd.o nntp_tcp.o div_func.o server.o filelock.o
  14. COBJ  =    agentc.o subjects.o nntp_tcp.o filelock.o div_func.o
  15.  
  16. all:    agentd agentc
  17.  
  18. agentd:    $(SOBJ); cc  -o agentd $(SOBJ)
  19. agentc:    $(COBJ); cc -o agentc $(COBJ)
  20.  
  21.